From 684602b92eeb5428c3693fde48d660a139eb22fb Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 3 May 1993 03:40:10 +0000 Subject: [PATCH] * sendmail.el (mail-setup): Don't insert "--\n" before the signature. If they want it, they can put it in their .signature file. --- lisp/mail/sendmail.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index e5a463ba746..4c3da7b2e54 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -153,9 +153,7 @@ so you can edit or delete these lines.") ;; Insert the signature. (cond ((eq mail-signature t) (if (file-exists-p "~/.signature") - (progn - (insert "--\n") - (insert-file-contents "~/.signature")))) + (insert-file-contents "~/.signature"))) (mail-signature (insert mail-signature))) (goto-char (point-max)) -- 2.30.2